home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / SCSIPlugin.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  64 lines

  1. /*
  2.      File:        SCSIPlugin.idl
  3.  
  4.      Contains:    Family defined Plugin exports and data structures
  5.  
  6.      Version:    Technology:    xxx put the technology version here xxx
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __SCSIPLUGIN_IDL__
  19. #define __SCSIPLUGIN_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __TYPES_IDL__
  25. #include <Types.idl>
  26. #endif
  27. #ifndef __KERNEL_IDL__
  28. #include <Kernel.idl>
  29. #endif
  30. #ifndef __SCSI_IDL__
  31. #include <SCSI.idl>
  32. #endif
  33.  
  34. #ifdef __SOMIDL__
  35.  
  36. #if FOR_SYSTEM8_PREEMPTIVE
  37. /*
  38. ************************************************************************
  39.         Define entries to SIM routines
  40. ************************************************************************
  41.   SIMInitInfo PB
  42.      directions are for SCSIPluginInit call ( -> parm, <- result)             */
  43.  need to change this to PluginControlBlock ***
  44. */
  45.  
  46.  
  47. typedef SOMLargeStruct            PluginControlBlock;            /* Derived from a struct of 36 bytes in size */
  48.  
  49. /* Define SIM calls passed into the family at initialize time*/
  50. typedef OpaquePtr SCSIPluginActionEntry;
  51. typedef OpaquePtr SCSIPluginHandleBusEventEntry;
  52. typedef OpaquePtr SCSIPluginInitEntry;
  53. typedef SOMLargeStruct            SCSIPluginInfo;                /* Derived from a struct of 16 bytes in size */
  54.  
  55. /* plugin needs to export this structure*/
  56. typedef SOMLargeStruct            SCSIPluginDispatchTable;    /* Derived from a struct of 28 bytes in size */
  57.  
  58. #endif
  59.  
  60. #endif /* __SOMIDL__ */
  61.  
  62. #endif /* __SCSIPLUGIN_IDL__ */
  63.  
  64.